home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / sched.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  5KB  |  119 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''A generally useful event scheduler class.
  5.  
  6. Each instance of this class manages its own queue.
  7. No multi-threading is implied; you are supposed to hack that
  8. yourself, or use a single instance per application.
  9.  
  10. Each instance is parametrized with two functions, one that is
  11. supposed to return the current time, one that is supposed to
  12. implement a delay.  You can implement real-time scheduling by
  13. substituting time and sleep from built-in module time, or you can
  14. implement simulated time by writing your own functions.  This can
  15. also be used to integrate scheduling with STDWIN events; the delay
  16. function is allowed to modify the queue.  Time can be expressed as
  17. integers or floating point numbers, as long as it is consistent.
  18.  
  19. Events are specified by tuples (time, priority, action, argument).
  20. As in UNIX, lower priority numbers mean higher priority; in this
  21. way the queue can be maintained as a priority queue.  Execution of the
  22. event means calling the action function, passing it the argument.
  23. Remember that in Python, multiple function arguments can be packed
  24. in a tuple.   The action function may be an instance method so it
  25. has another way to reference private data (besides global variables).
  26. Parameterless functions or methods cannot be used, however.
  27. '''
  28. import heapq
  29. __all__ = [
  30.     'scheduler']
  31.  
  32. class scheduler:
  33.     
  34.     def __init__(self, timefunc, delayfunc):
  35.         '''Initialize a new instance, passing the time and delay
  36.         functions'''
  37.         self.queue = []
  38.         self.timefunc = timefunc
  39.         self.delayfunc = delayfunc
  40.  
  41.     
  42.     def enterabs(self, time, priority, action, argument):
  43.         '''Enter a new event in the queue at an absolute time.
  44.  
  45.         Returns an ID for the event which can be used to remove it,
  46.         if necessary.
  47.  
  48.         '''
  49.         event = (time, priority, action, argument)
  50.         heapq.heappush(self.queue, event)
  51.         return event
  52.  
  53.     
  54.     def enter(self, delay, priority, action, argument):
  55.         '''A variant that specifies the time as a relative time.
  56.  
  57.         This is actually the more commonly used interface.
  58.  
  59.         '''
  60.         time = self.timefunc() + delay
  61.         return self.enterabs(time, priority, action, argument)
  62.  
  63.     
  64.     def cancel(self, event):
  65.         '''Remove an event from the queue.
  66.  
  67.         This must be presented the ID as returned by enter().
  68.         If the event is not in the queue, this raises RuntimeError.
  69.  
  70.         '''
  71.         self.queue.remove(event)
  72.         heapq.heapify(self.queue)
  73.  
  74.     
  75.     def empty(self):
  76.         '''Check whether the queue is empty.'''
  77.         return not (self.queue)
  78.  
  79.     
  80.     def run(self):
  81.         """Execute events until the queue is empty.
  82.  
  83.         When there is a positive delay until the first event, the
  84.         delay function is called and the event is left in the queue;
  85.         otherwise, the event is removed from the queue and executed
  86.         (its action function is called, passing it the argument).  If
  87.         the delay function returns prematurely, it is simply
  88.         restarted.
  89.  
  90.         It is legal for both the delay function and the action
  91.         function to to modify the queue or to raise an exception;
  92.         exceptions are not caught but the scheduler's state remains
  93.         well-defined so run() may be called again.
  94.  
  95.         A questionably hack is added to allow other threads to run:
  96.         just after an event is executed, a delay of 0 is executed, to
  97.         avoid monopolizing the CPU when other threads are also
  98.         runnable.
  99.  
  100.         """
  101.         q = self.queue
  102.         delayfunc = self.delayfunc
  103.         timefunc = self.timefunc
  104.         pop = heapq.heappop
  105.         while q:
  106.             (time, priority, action, argument) = checked_event = q[0]
  107.             now = timefunc()
  108.             if now < time:
  109.                 delayfunc(time - now)
  110.                 continue
  111.             event = pop(q)
  112.             if event is checked_event:
  113.                 void = action(*argument)
  114.                 delayfunc(0)
  115.                 continue
  116.             heapq.heappush(q, event)
  117.  
  118.  
  119.